home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / t_os / igo / src / my_commn.c < prev   
C/C++ Source or Header  |  1993-07-08  |  217b  |  16 lines

  1. #define    DEBUG    0
  2. /* 
  3.     私用汎用関数
  4.                                           1993/02/28  久保田俊也
  5.  
  6. */
  7. #include <stdio.h>
  8. #include <time.h>
  9. void wait( int tm )
  10. {
  11. tm += clock();
  12. while( tm >= clock() );
  13. }
  14.  
  15.  
  16.